Plot of Items*Condition. Symbol is value of Age. 20 ˆ 18 ˆ Y 16 ˆ. Items Y 14 ˆ 12 ˆ O 10 ˆ 8 ˆ Y O O Y 6 ˆ

Size: px
Start display at page:

Download "Plot of Items*Condition. Symbol is value of Age. 20 ˆ 18 ˆ Y 16 ˆ. Items Y 14 ˆ 12 ˆ O 10 ˆ 8 ˆ Y O O Y 6 ˆ"

Transcription

1 Plot of Items*Condition. Symbol is value of Age. 20 ˆ Y 18 ˆ Y 16 ˆ Items Y 14 ˆ O 12 ˆ O O 10 ˆ 8 ˆ Y O O Y 6 ˆ Šƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒ Counting Rhyming Adjective Imagery Intentional Condition

2 proc means NWAY noprint; class Age Condition; var Items; output out=klw2 mean= ; proc plot; plot Items*Condition=Age; PROC GLM data=klw; CLASS Age Condition; MODEL Items=Age Condition / SS1 EFFECTSIZE alpha=0.1; means Age Condition; MEANS Condition / REGWQ; LSMEANS Condition / PDIFF CL ALPHA=.05; LSMEANS Age*Condition / SLICE=Age; LSMEANS Age*Condition / SLICE=Condition; * Note had to specify DATA=KLW -- otherwise PROC ANOVA would use the last created data set (KLW2, the cell means); Omnibus Analysis and Simple Main Effects Using Pooled Error Class Age Condition The GLM Procedure Class Level Information Levels Values 2 Old Young 5 Adjective Counting Imagery Intentional Rhyming Number of ervations Read 100 Number of ervations Used 100 Source DF Sum of s Mean F Value Pr > F Model <.0001 Error Corrected Total R- Coeff Var Root MSE Items Mean Proportion of Variation Accounted for Eta Omega % Confidence Limits (0.62,0.76)

3 Source DF Type I SS Mean F Value Pr > F Total Variation Accounted For Partial Variation Accounted For Semipartial Eta- Semipartial Omega- Conservative 90% Confidence Limits Partial Eta- Partial Omega- 90% Confidence Limits Age < Condition < Age*Condition

4 Omnibus Analysis and Simple Main Effects Using Pooled Error The GLM Procedure Level of Age N Mean Items Std Dev Old Young

5 Level of Condition N Mean Items Std Dev Adjective Counting Imagery Intentional Rhyming

6 Level of Age Level of Condition N Mean Items Std Dev Old Adjective Old Counting Old Imagery Old Intentional Old Rhyming Young Adjective Young Counting Young Imagery Young Intentional Young Rhyming

7 Ryan-Einot-Gabriel-Welsch Multiple Range Test for Items Note: This test controls the Type I experimentwise error rate. Alpha 0.05 Error Degrees of Freedom 90 Error Mean Means with the same letter are not significantly different. REGWQ Grouping A A A Mean N Condition Intentional Imagery B Adjective C C C Rhyming Counting LSMEANS Condition / PDIFF CL ALPHA=.05; Least s Means Condition Items LSMEAN LSMEAN Number Adjective Counting Imagery Intentional Rhyming Least s Means for effect Condition Pr > t for H0: LSMean(i)=LSMean(j) i/j < < <.0001 <.0001 < < < < < < <.0001 <.0001

8 Condition Items LSMEAN 95% Confidence Limits Adjective Counting Imagery Intentional Rhyming Least s Means for Effect Condition i j Difference Between Means 95% Confidence Limits for LSMean(i)-LSMean(j) Note: To ensure overall protection level, only probabilities associated with pre-planned comparisons should be used. LSMEANS Age*Condition / SLICE=Age; Least s Means Age Condition Items LSMEAN Old Adjective Old Counting Old Imagery Old Intentional Old Rhyming Young Adjective Young Counting Young Imagery Young Intentional Young Rhyming

9 Age DF Sum of s Mean Simple Main Effect of Condition at Levels of Age F Value Pr > F Total Variation Accounted For Partial Variation Accounted For Semipartial Eta- Semipartial Omega- Conservative 90% Confidence Limits Partial Eta- Partial Omega- 90% Confidence Limits Old < Young < CAUTION: Do not use the eta-squared statistics provided by the simple effects analysis in the table above and that immediately below. For both groups (Old and Young) it includes in the denominator the total variance in both groups, that is, SSTotal = I recommend getting the eta-squared statistics from the individual error terms approach shown later. LSMEANS Age*Condition / SLICE=Condition; Condition DF Sum of s Simple Main Effect of Age at Levels of Depth of Cognitive Processing Mean F Value Pr > F Total Variation Accounted For Partial Variation Accounted For Semipartial Eta- Semipartial Omega- Conservative 90% Confidence Limits Partial Eta- Partial Omega- 90% Confidence Limits Adjective Counting Imagery Intentional < Rhyming DATA ETA; F= 29.94; df_num = 1; df_den = 90; %CI F and df from the omnibus ANOVA. %CI calls up my macro, which is included in the program. 90% Confidence interval on PARTIAL eta-squared for the main effect of Age eta_2 eta2_lower eta2_upper My macro produces a less conservative CI than does GLM. GLM produced [.119,.363]. *********************************************************************************** Construct 90% Confidence Interval for Eta-d for Age -- used Proc ANOVA to get the adjusted F with effects of Condition and the interaction put in the error term. **********************************************************************************; title '90% Confidence interval on eta-squared for the effect of Age'; run; PROC ANOVA data=klw; CLASS Age; Model Items = Age; run; DATA ETA; F= 9.699; df_num = 1; df_den = 98; %CI

10 Value of F and df from the one-way ANOVA below. 90% Confidence interval on eta-squared for the main effect of Age The ANOVA Procedure Source DF Sum of s Mean F Value Pr > F Model Error Corrected Total eta_2 eta2_lower eta2_upper DATA ETA; F= 47.19; df_num = 4; df_den = 90; %CI 90% Confidence interval on PARTIAL eta-squared for the main effect of Condition eta_2 eta2_lower eta2_upper PROC ANOVA data=klw; CLASS Condition; Model Items = Condition; run; DATA ETA; F= 31.21; df_num = 4; df_den = 95; %CI 90% Confidence interval on eta-squared for the main effect of Condition Source DF Sum of s Mean F Value Pr > F Model <.0001 Error Corrected Total eta_2 eta2_lower eta2_upper DATA ETA; F= 5.93; df_num = 4; df_den = 90; %CI 90% Confidence interval on PARTIAL eta-squared for the interaction eta_2 eta2_lower eta2_upper

11 Construct Confidence Interval for Eta-d for Age x Condition Interaction Adjust F by hand: From the factorial ANOVA, MSE = (SS_Total - SS_AxC)/(df_Total - df_axc) = ( )/(99-4) = The F = MS_AxC/MSE = / = on 4 and 95 df. *******************************************************************************; title 'Confidence Interval on Eta-d for Age x Conditon Interaction'; run; Data CI; F= 1.824; df_num = 4; df_den = 95; %CI Confidence Interval on Eta-d for Age x Condition Interaction eta_2 eta2_lower eta2_upper ******************************************************************************** Construct confidence interval for d, main effect of Age. *******************************************************************************; PROC TTEST data=klw; CLASS Age; VAR Items; title 'Comparing Oldsters with Youngsters'; run; Data CI; t= 3.11; df = 98; n1 = 50; n2 = 50; %CIt %CIt calls up my macro to put confidence intervals on Cohen s d. Comparing Oldsters with Youngsters Method Variances DF t Value Pr > t Pooled Equal Satterthwaite Unequal d d_lower d_upper PROC SORT data=klw; BY Age; PROC ANOVA data=klw; CLASS Condition; MODEL Items=Condition; BY Age; title 'Simple Main Effects of Recall Condition Using Individual Error Terms'; run; Simple Main Effects of Recall Condition Using Individual Error Terms Class Condition Levels Values The ANOVA Procedure Age=Old Class Level Information 5 Adjective Counting Imagery Intentional Rhyming Number of ervations Read 50 Number of ervations Used 50

12 The ANOVA Procedure Age=Old Source DF Sum of s Mean F Value Pr > F Model <.0001 Error Corrected Total R- Coeff Var Root MSE Items Mean The ANOVA Procedure Age=Young Source DF Sum of s Mean F Value Pr > F Model <.0001 Error Corrected Total title2 'Oldsters'; Data CI; F= 9.08; df_num = 4; df_den = 45; %CI title2 'Youngsters'; Data CI; F= 53.06; df_num = 4; df_den = 45; %CI R- Coeff Var Root MSE Items Mean Oldsters eta_2 eta2_lower eta2_upper Youngsters eta_2 eta2_lower eta2_upper

13 PROC SORT data=klw; BY Condition; PROC ANOVA data=klw; CLASS Age; MODEL Items=Age; BY Condition; title 'Simple Main Effects of Age Using Individual Error Terms'; run; Source Simple Main Effects of Age Using Individual Error Terms Condition=Counting DF Sum of s Mean F Value Pr > F Model Error Corrected Total Condition=Rhyming Source DF Sum of s Mean F Value Pr > F Model Error Corrected Total Condition=Adjective Source DF Sum of s Mean F Value Pr > F Model Error Corrected Total Condition=Imagery Source DF Sum of s Mean F Value Pr > F Model Error Corrected Total Condition=Intentional Source DF Sum of s Mean F Value Pr > F Model <.0001 Error Corrected Total

14 title2 'Counting'; run; Data CI; t=.678; df = 18; n1 = 10; n2 = 10; %CIt title2 'Rhyming'; run; Data CI; t=.768; df = 18; n1 = 10; n2 = 10; %CIt title2 'Adjective'; run; Data CI; t= 2.80; df = 18; n1 = 10; n2 = 10; %CIt title2 'Imagery'; run; Data CI; t= 2.56; df = 18; n1 = 10; n2 = 10; %CIt title2 'Intentional'; run; Data CI; t= 5.02; df = 18; n1 = 10; n2 = 10; %CIt Note: the value of t is simply the square root of the simple effect F, and the df are simply the error df for that F. Confidence Intervals for Cohen s d Counting d d_lower d_upper Rhyming d d_lower d_upper Adjective d d_lower d_upper Imagery d d_lower d_upper Intentional d d_lower d_upper proc gplot data=klw2; symbol1 interpol=join width=4 value=triangle height=2 color=red; symbol2 interpol=join width=4 value=square height=2 color=green; plot Items*Condition=Age; title 'Figure 1. Recall by Age and Condition'; run; quit;

15

proc plot; plot Mean_Illness*Dose=Dose; run;

proc plot; plot Mean_Illness*Dose=Dose; run; options pageno=min nodate formdlim='-'; Title 'Illness Related to Dose of Therapeutic Drug'; run; data Lotus; input Dose N; Do I=1 to N; Input Illness @@; output; end; cards; 0 20 101 101 101 104 104 105

More information

Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data

Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data STAT:5201 Anaylsis/Applied Statistic II (LSmeans vs. means) Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data Power (levels

More information

Obs location y

Obs location y ods rtf file='s:\webpages\~renaes\output\sas\sas kw output.rtf'; data tab331 ; input location y @@ ; cards ; 1 26.5 1 15.0 1 18.2 1 19.5 1 23.1 1 17.3 2 16.5 2 15.8 2 14.1 2 30.2 2 25.1 2 17.4 3 19.2 3

More information

ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS

ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS Avtar Singh National Dairy Research Institute, Karnal -132001 In statistics, analysis of variance (ANOVA) is a collection

More information

Assignment 2 1) DAY TREATMENT TOTALS

Assignment 2 1) DAY TREATMENT TOTALS Assignment 2 1) DAY BATCH 1 2 3 4 5 TOTAL 1 A=8 B=7 D=1 C=7 E=3 26 2 C=11 E=2 A=7 D=3 B=8 31 3 B=4 A=9 C=10 E=1 D=5 29 4 D=6 C=8 E=6 B=6 A=10 36 5 E=4 D=2 B=3 A=8 C=8 25 TOTAL 33 28 27 25 34 147 TREATMENT

More information

8.6 Jonckheere-Terpstra Test for Ordered Alternatives. 6.5 Jonckheere-Terpstra Test for Ordered Alternatives

8.6 Jonckheere-Terpstra Test for Ordered Alternatives. 6.5 Jonckheere-Terpstra Test for Ordered Alternatives 8.6 Jonckheere-Terpstra Test for Ordered Alternatives 6.5 Jonckheere-Terpstra Test for Ordered Alternatives 136 183 184 137 138 185 Jonckheere-Terpstra Test Example 186 139 Jonckheere-Terpstra Test Example

More information

Comparing Means. Chapter 24. Case Study Gas Mileage for Classes of Vehicles. Case Study Gas Mileage for Classes of Vehicles Data collection

Comparing Means. Chapter 24. Case Study Gas Mileage for Classes of Vehicles. Case Study Gas Mileage for Classes of Vehicles Data collection Chapter 24 One-Way Analysis of Variance: Comparing Several Means BPS - 5th Ed. Chapter 24 1 Comparing Means Chapter 18: compared the means of two populations or the mean responses to two treatments in

More information

Chapter 25. One-Way Analysis of Variance: Comparing Several Means. BPS - 5th Ed. Chapter 24 1

Chapter 25. One-Way Analysis of Variance: Comparing Several Means. BPS - 5th Ed. Chapter 24 1 Chapter 25 One-Way Analysis of Variance: Comparing Several Means BPS - 5th Ed. Chapter 24 1 Comparing Means Chapter 18: compared the means of two populations or the mean responses to two treatments in

More information

Lampiran 1: Data Investasi Perusahaan GE, US, GM dan WEST

Lampiran 1: Data Investasi Perusahaan GE, US, GM dan WEST Lampiran 1: Data Investasi Perusahaan GE, US, GM dan WEST Tahun GE US I F C I F C 1935 33.10 1170.60 97.80 209.90 1362.40 53.80 1936 45.00 2015.80 104.40 355.30 1807.10 50.50 1937 77.20 2803.30 118.00

More information

A Thesis. Presented to. Master of Science in Forensic Science Program EMPORIA STATE UNIVERSITY In Partial Fulfillment

A Thesis. Presented to. Master of Science in Forensic Science Program EMPORIA STATE UNIVERSITY In Partial Fulfillment AN ABSTRACT OF THE THESIS OF Lindsy Rhea Whitlow for the Master of Science in Forensic Science presented on July 13, 2017 An Investigation of Test Impression Methods to Accurately Reproduce Randomly Acquired

More information

Syntax Menu Description Options Remarks and examples Stored results References Also see

Syntax Menu Description Options Remarks and examples Stored results References Also see Title stata.com permute Monte Carlo permutation tests Syntax Menu Description Options Remarks and examples Stored results References Also see Syntax Compute permutation test permute permvar exp list [,

More information

Repeated Measures Twoway Analysis of Variance

Repeated Measures Twoway Analysis of Variance Repeated Measures Twoway Analysis of Variance A researcher was interested in whether frequency of exposure to a picture of an ugly or attractive person would influence one's liking for the photograph.

More information

Two Factor Full Factorial Design with Replications

Two Factor Full Factorial Design with Replications Two Factor Full Factorial Design with Replications Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 Jain@cse.wustl.edu These slides are available on-line at: 22-1 Overview Model Computation

More information

Estimate (95% C.I.) Ev/Trt. Studies

Estimate (95% C.I.) Ev/Trt. Studies 1 0.060 (0.022, 0.098) 0.098 (0.064, 0.132) 0.104 (0.089, 0.120) 0.066 (0.030, 0.102) 0.109 (0.066, 0.153) 0.071 (0.029, 0.113) 0.250 (0.077, 0.423) 0.081 (0.045, 0.116) 0.075 (0.000, 0.157) 0.093 (0.015,

More information

IE 361 Module 4. Metrology Applications of Some Intermediate Statistical Methods for Separating Components of Variation

IE 361 Module 4. Metrology Applications of Some Intermediate Statistical Methods for Separating Components of Variation IE 361 Module 4 Metrology Applications of Some Intermediate Statistical Methods for Separating Components of Variation Reading: Section 2.2 Statistical Quality Assurance for Engineers (Section 2.3 of Revised

More information

Mark S. Litaker and Bob Gutin, Medical College of Georgia, Augusta GA. Paper P-715 ABSTRACT INTRODUCTION

Mark S. Litaker and Bob Gutin, Medical College of Georgia, Augusta GA. Paper P-715 ABSTRACT INTRODUCTION Paper P-715 A Simulation Study to Compare the Performance of Permutation Tests for Time by Group Interaction in an Unbalanced Repeated-Measures Design, Using Two Permutation Schemes Mark S. Litaker and

More information

Example #2: Factorial Independent Groups Design. A data set was created using summary data presented by Wicherts, Dolan and

Example #2: Factorial Independent Groups Design. A data set was created using summary data presented by Wicherts, Dolan and Example #2: Factorial Independent Groups Design A data set was created using summary data presented by Wicherts, Dolan and Hessen (2005). These authors examined the effects of stereotype threat on women

More information

Prices of digital cameras

Prices of digital cameras Prices of digital cameras The August 2012 issue of Consumer Reports included a report on digital cameras. The magazine listed 60 cameras, all of which were recommended by them, divided into six categories

More information

EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1

EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1 EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1 1 *** CH05SD ***; 2 *****************************************************************************; 3 *** The Second International Math

More information

Lectures 15/16 ANOVA. ANOVA Tests. Analysis of Variance. >ANOVA stands for ANalysis Of VAriance >ANOVA allows us to:

Lectures 15/16 ANOVA. ANOVA Tests. Analysis of Variance. >ANOVA stands for ANalysis Of VAriance >ANOVA allows us to: Lectures 5/6 Analysis of Variance ANOVA >ANOVA stands for ANalysis Of VAriance >ANOVA allows us to: Do multiple tests at one time more than two groups Test for multiple effects simultaneously more than

More information

Jednoczynnikowa analiza wariancji (ANOVA)

Jednoczynnikowa analiza wariancji (ANOVA) Wydział Matematyki Jednoczynnikowa analiza wariancji (ANOVA) Wykład 07 Example 1 An accounting firm has developed three methods to guide its seasonal employees in preparing individual income tax returns.

More information

A1 = Chess A2 = Non-Chess B1 = Male B2 = Female

A1 = Chess A2 = Non-Chess B1 = Male B2 = Female Chapter IV 4.0Analysis And Interpretation Of The Data In this chapter, the analysis of the data of two hundred chess and non chess players of Hyderabad has been analysed.for this study 200 samples were

More information

Lesson Sampling Distribution of Differences of Two Proportions

Lesson Sampling Distribution of Differences of Two Proportions STATWAY STUDENT HANDOUT STUDENT NAME DATE INTRODUCTION The GPS software company, TeleNav, recently commissioned a study on proportions of people who text while they drive. The study suggests that there

More information

Assessing Measurement System Variation

Assessing Measurement System Variation Example 1 Fuel Injector Nozzle Diameters Problem A manufacturer of fuel injector nozzles has installed a new digital measuring system. Investigators want to determine how well the new system measures the

More information

Starting Experimental Design

Starting Experimental Design Starting Experimental Design Exam 3 will emphasize Experimental Design. Design is the plan for manipulating Independent Variables and analyzing the data. Design determines what you cam learn from your

More information

Univariate Descriptive Statistics

Univariate Descriptive Statistics Univariate Descriptive Statistics Displays: pie charts, bar graphs, box plots, histograms, density estimates, dot plots, stemleaf plots, tables, lists. Example: sea urchin sizes Boxplot Histogram Urchin

More information

Department of Statistics and Operations Research Undergraduate Programmes

Department of Statistics and Operations Research Undergraduate Programmes Department of Statistics and Operations Research Undergraduate Programmes OPERATIONS RESEARCH YEAR LEVEL 2 INTRODUCTION TO LINEAR PROGRAMMING SSOA021 Linear Programming Model: Formulation of an LP model;

More information

Measurement Systems Analysis

Measurement Systems Analysis 11 Measurement Systems Analysis Measurement Systems Analysis Overview, 11-2, 11-4 Gage Run Chart, 11-23 Gage Linearity and Accuracy Study, 11-27 MINITAB User s Guide 2 11-1 Chapter 11 Measurement Systems

More information

Development of an improved flood frequency curve applying Bulletin 17B guidelines

Development of an improved flood frequency curve applying Bulletin 17B guidelines 21st International Congress on Modelling and Simulation, Gold Coast, Australia, 29 Nov to 4 Dec 2015 www.mssanz.org.au/modsim2015 Development of an improved flood frequency curve applying Bulletin 17B

More information

Better Ways to Illuminate: Effects of Box Type

Better Ways to Illuminate: Effects of Box Type Better Ways to Illuminate: Effects of Box Type During the development of this module several suggestions were made regarding the experimental set up used to collect data on light and temperature emitted

More information

How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory

How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory Prev Sci (2007) 8:206 213 DOI 10.1007/s11121-007-0070-9 How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory John W. Graham & Allison E. Olchowski & Tamika

More information

IE 361 Module 7. Reading: Section 2.5 of Revised SQAME. Prof. Steve Vardeman and Prof. Max Morris. Iowa State University

IE 361 Module 7. Reading: Section 2.5 of Revised SQAME. Prof. Steve Vardeman and Prof. Max Morris. Iowa State University IE 361 Module 7 Calibration Studies and Inference Based on Simple Linear Regression Reading: Section 2.5 of Revised SQAME Prof. Steve Vardeman and Prof. Max Morris Iowa State University Vardeman and Morris

More information

GR007 Forcing SAS/GRAPH Software to Meet My Statistical Needs: A Graphical Presentation of Odds Ratios. Rick M. Mitchell, Westat, Rockville, MD

GR007 Forcing SAS/GRAPH Software to Meet My Statistical Needs: A Graphical Presentation of Odds Ratios. Rick M. Mitchell, Westat, Rockville, MD GR007 Forcing SAS/GRAPH Software to Meet My Statistical Needs: A Graphical Presentation of Odds Ratios Rick M. Mitchell, Westat, Rockville, MD ABSTRACT The calculation of odds ratios is a task that SAS

More information

fmri design efficiency

fmri design efficiency fmri design efficiency Aim: to design experiments maximising the power of detecting real effects. (That is, avoid type-ii errors, a.k.a misses ). -------------- Hard Constraints: - total duration of acquisition

More information

This page intentionally left blank

This page intentionally left blank Appendix E Labs This page intentionally left blank Dice Lab (Worksheet) Objectives: 1. Learn how to calculate basic probabilities of dice. 2. Understand how theoretical probabilities explain experimental

More information

I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS

I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS Six Sigma Quality Concepts & Cases- Volume I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS Chapter 7 Measurement System Analysis Gage Repeatability & Reproducibility (Gage R&R)

More information

How can it be right when it feels so wrong? Outliers, diagnostics, non-constant variance

How can it be right when it feels so wrong? Outliers, diagnostics, non-constant variance How can it be right when it feels so wrong? Outliers, diagnostics, non-constant variance D. Alex Hughes November 19, 2014 D. Alex Hughes Problems? November 19, 2014 1 / 61 1 Outliers Generally Residual

More information

Statistical Hypothesis Testing

Statistical Hypothesis Testing Statistical Hypothesis Testing Statistical Hypothesis Testing is a kind of inference Given a sample, say something about the population Examples: Given a sample of classifications by a decision tree, test

More information

!"#$%&'("&)*("*+,)-(#'.*/$'-0%$1$"&-!!!"#$%&'(!"!!"#$%"&&'()*+*!

!#$%&'(&)*(*+,)-(#'.*/$'-0%$1$&-!!!#$%&'(!!!#$%&&'()*+*! !"#$%&'("&)*("*+,)-(#'.*/$'-0%$1$"&-!!!"#$%&'(!"!!"#$%"&&'()*+*! In this Module, we will consider dice. Although people have been gambling with dice and related apparatus since at least 3500 BCE, amazingly

More information

I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS

I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS Six Sigma Quality Concepts & Cases- Volume I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS Chapter 7 Measurement System Analysis Gage Repeatability & Reproducibility (Gage R&R)

More information

OPTIMIZATION OF CUTTING CONDITIONS FOR THE REDUCTION CUSP HEIGHT IN THE MILLING PROCESS

OPTIMIZATION OF CUTTING CONDITIONS FOR THE REDUCTION CUSP HEIGHT IN THE MILLING PROCESS OPTIMIZATION OF CUTTING CONDITIONS FOR THE REDUCTION CUSP HEIGHT IN THE MILLING PROCESS Abstract Ing. Jozef Stahovec Ing. Ladislav Kandráč Technical University of Košice Faculty of Mechanical Engineering

More information

A Gentle Introduction to SAS/Graph Software

A Gentle Introduction to SAS/Graph Software A Gentle Introduction to SAS/Graph Software Ben Cochran, The Bedford Group, Raleigh, NC Abstract: The power and flexibility of SAS/GRAPH software enables the user to produce high quality graphs, charts,

More information

Nomograms for visualising relationships between three variables

Nomograms for visualising relationships between three variables Nomograms for visualising relationships between three variables Jonathan Rougier 1 Kate Milner 2 1 Dept Mathematics, Univ. Bristol 2 Crossroads Veterinary Centre, Buckinghamshire UseR! 2011, August 2011,

More information

Permutation inference for the General Linear Model

Permutation inference for the General Linear Model Permutation inference for the General Linear Model Anderson M. Winkler fmrib Analysis Group 3.Sep.25 Winkler Permutation for the glm / 63 in jalapeno: winkler/bin/palm Winkler Permutation for the glm 2

More information

NEW ASSOCIATION IN BIO-S-POLYMER PROCESS

NEW ASSOCIATION IN BIO-S-POLYMER PROCESS NEW ASSOCIATION IN BIO-S-POLYMER PROCESS Long Flory School of Business, Virginia Commonwealth University Snead Hall, 31 W. Main Street, Richmond, VA 23284 ABSTRACT Small firms generally do not use designed

More information

One-Sample Z: C1, C2, C3, C4, C5, C6, C7, C8,... The assumed standard deviation = 110

One-Sample Z: C1, C2, C3, C4, C5, C6, C7, C8,... The assumed standard deviation = 110 SMAM 314 Computer Assignment 3 1.Suppose n = 100 lightbulbs are selected at random from a large population.. Assume that the light bulbs put on test until they fail. Assume that for the population of light

More information

IEOR 130 Methods of Manufacturing Improvement Fall, 2018, Prof. Leachman Homework Assignment 8, Due Tuesday Nov. 13

IEOR 130 Methods of Manufacturing Improvement Fall, 2018, Prof. Leachman Homework Assignment 8, Due Tuesday Nov. 13 IEOR 130 Methods of Manufacturing Improvement Fall, 2018, Prof. Leachman Homework Assignment 8, Due Tuesday Nov. 13 1. Consider a factory operating at a steady production rate. Suppose the target WIP level

More information

1833 l. 239mm J7. Ragabaam. STATiSTQCAL STUDEEfi 0? $151. TECHNIQUES 0N HYQRm CORN E EJZLALS. fixesis {w 336 Degree of M. Sc. (Duh- '11 1I \ M H

1833 l. 239mm J7. Ragabaam. STATiSTQCAL STUDEEfi 0? $151. TECHNIQUES 0N HYQRm CORN E EJZLALS. fixesis {w 336 Degree of M. Sc. (Duh- '11 1I \ M H \ 1 I, I M j H! i } I I U 1 I. W I H { 1I \ M H "l H j 1H l1 M. E 1 : \U 1 i! Vl I A ti w M «I l 1 1 I 14 C).1) f1 1) L '11 )1 3 [w l i q 1833 l (Duh- a l :1 T] ) LU a U C) P STATiSTQCAL STUDEEfi 0? $151.

More information

Miguel I. Aguirre-Urreta

Miguel I. Aguirre-Urreta RESEARCH NOTE REVISITING BIAS DUE TO CONSTRUCT MISSPECIFICATION: DIFFERENT RESULTS FROM CONSIDERING COEFFICIENTS IN STANDARDIZED FORM Miguel I. Aguirre-Urreta School of Accountancy and MIS, College of

More information

Wednesday, May 4, Proportions

Wednesday, May 4, Proportions Proportions Proportions Proportions What are proportions? Proportions What are proportions? - If two ratios are equal, they form a proportion. Proportions can be used in geometry when working with similar

More information

Analyzing Data Properties using Statistical Sampling Techniques

Analyzing Data Properties using Statistical Sampling Techniques Analyzing Data Properties using Statistical Sampling Techniques Illustrated on Scientific File Formats and Compression Features Julian M. Kunkel kunkel@dkrz.de 2016-06-21 Outline 1 Introduction 2 Exploring

More information

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies IE 361 Module 6 Gauge R&R Studie Part 2: Two-Way ANOVA and Correponding Etimate for R&R Studie Reading: Section 2.2 Statitical Quality Aurance for Engineer (Section 2.4 of Revied SQAME) Prof. Steve Vardeman

More information

Chapter 8. Using the GLM

Chapter 8. Using the GLM Chapter 8 Using the GLM This chapter presents the type of change products that can be derived from a GLM enhanced change detection procedure. One advantage to GLMs is that they model the probability of

More information

Understanding and Using the U.S. Census Bureau s American Community Survey

Understanding and Using the U.S. Census Bureau s American Community Survey Understanding and Using the US Census Bureau s American Community Survey The American Community Survey (ACS) is a nationwide continuous survey that is designed to provide communities with reliable and

More information

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA, SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA, 2016 Volume 24, Number 38

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA, SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA, 2016 Volume 24, Number 38 RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA 2016 Volume 24, Number 38 THE STABILITY OF WEDM Vladimír ŠIMNA SLOVAK UNIVERSITY OF TECHNOLOGY

More information

Mason Chen (Black Belt) Morrill Learning Center, San Jose, CA

Mason Chen (Black Belt) Morrill Learning Center, San Jose, CA Poster ID 12 Google Robot Mason Chen (Black Belt) Morrill Learning Center, San Jose, CA D1 Observations and Research Google Cars stop at the red light and speed up at green light how & why Google Car can

More information

Time Iteration Protocol for TOD Clock Synchronization. Eric E. Johnson. January 23, 1992

Time Iteration Protocol for TOD Clock Synchronization. Eric E. Johnson. January 23, 1992 Time Iteration Protocol for TOD Clock Synchronization Eric E. Johnson January 23, 1992 Introduction This report presents a protocol for bringing HF stations into closer synchronization than is normally

More information

Spatial distribution and sequential sampling plans for the banded sunflower moth (Lepidoptera: Cochylidae) eggs on sunflower

Spatial distribution and sequential sampling plans for the banded sunflower moth (Lepidoptera: Cochylidae) eggs on sunflower University of Nebraska - Lincoln From the SelectedWorks of Gary J. Brewer 1996 Spatial distribution and sequential sampling plans for the banded sunflower moth (Lepidoptera: Cochylidae) eggs on sunflower

More information

Web Appendix: Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation

Web Appendix: Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation Web Appendix: Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation November 28, 2017. This appendix accompanies Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation.

More information

DOL3 dendrogram. DOL3 modules. Colored by DOL1 modules

DOL3 dendrogram. DOL3 modules. Colored by DOL1 modules NETWORK BREAKOWN colorhdataone=as.character(modulecolor2(hiergtomdataone,h1=.6, minsize1=50 colorhdatatwo=as.character(modulecolor2(hiergtomdatatwo,h1=.6, minsize1=50 #table(colorhdatatwo,colorhdataone

More information

!"#$%&'("&)*("*+,)-(#'.*/$'-0%$1$"&-!!!"#$%&'(!"!!"#$%"&&'()*+*!

!#$%&'(&)*(*+,)-(#'.*/$'-0%$1$&-!!!#$%&'(!!!#$%&&'()*+*! !"#$%&'("&)*("*+,)-(#'.*/$'-0%$1$"&-!!!"#$%&'(!"!!"#$%"&&'()*+*! In this Module, we will consider dice. Although people have been gambling with dice and related apparatus since at least 3500 BCE, amazingly

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. B) Blood type Frequency

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. B) Blood type Frequency MATH 1342 Final Exam Review Name Construct a frequency distribution for the given qualitative data. 1) The blood types for 40 people who agreed to participate in a medical study were as follows. 1) O A

More information

OPTIMIZATION OF CUTTING TOOL GEOMETRIC PARAMETERS IN MILLING OF CFRP LAMINATES

OPTIMIZATION OF CUTTING TOOL GEOMETRIC PARAMETERS IN MILLING OF CFRP LAMINATES 21 st International Conference on Composite Materials Xi an, 20-25 th August 2017 OPTIMIZATION OF CUTTING TOOL GEOMETRIC PARAMETERS IN MILLING OF CFRP LAMINATES S. Waqar 1, Y. He 2*, C.A. Abbas 3, and

More information

1990 Census Measures. Fast Track Project Technical Report Patrick S. Malone ( ; 9-May-00

1990 Census Measures. Fast Track Project Technical Report Patrick S. Malone ( ; 9-May-00 1990 Census Measures Fast Track Project Technical Report Patrick S. Malone (919-668-6910; malone@alumni.duke.edu) 9-May-00 Table of Contents I. Scale Description II. Report Sample III. Scaling IV. Differences

More information

Distributing your Inheritance Fairly: Equity Theory and Will Power

Distributing your Inheritance Fairly: Equity Theory and Will Power Rochester Institute of Technology RIT Scholar Works Articles 9-2-1998 Distributing your Inheritance Fairly: Equity Theory and Will Power Morton Isaacs Rochester Institute of Technology Follow this and

More information

DESIGN AND PROCESS DEVELOPMENT FOR THE ASSEMBLY OF PASSIVE COMPONENTS

DESIGN AND PROCESS DEVELOPMENT FOR THE ASSEMBLY OF PASSIVE COMPONENTS DESIGN AND PROCESS DEVELOPMENT FOR THE ASSEMBLY OF 01005 PASSIVE COMPONENTS J. Li 1, S. Poranki 1, R. Gallardo 2, M. Abtew 2, R. Kinyanjui 2, Ph.D., and K. Srihari 1, Ph.D. 1 Watson Institute for Systems

More information

The effects of uncertainty in forest inventory plot locations. Ronald E. McRoberts, Geoffrey R. Holden, and Greg C. Liknes

The effects of uncertainty in forest inventory plot locations. Ronald E. McRoberts, Geoffrey R. Holden, and Greg C. Liknes The effects of uncertainty in forest inventory plot locations Ronald E. McRoberts, Geoffrey R. Holden, and Greg C. Liknes North Central Research Station, USDA Forest Service, Saint Paul, Minnesota 55108

More information

Performance Evaluation of Wedm Machining on Incoloy800 by TAGUCHI Method

Performance Evaluation of Wedm Machining on Incoloy800 by TAGUCHI Method Performance Evaluation of Wedm Machining on Incoloy800 by TAGUCHI Method Gagan Goyal Scholar Shri Balaji Collegeof Engineering & Technology, Jaipur, Rajasthan, India Ashok Choudhary Asistant Professor

More information

Graphs of Polynomial Functions. Quadratic Functions

Graphs of Polynomial Functions. Quadratic Functions Graphs of Polnomials 1 Graphs of Polnomial Functions Recall that the degree of a polnomial is the highest power of the independent variable appearing in it. A polnomial can have no more roots than its

More information

Name: Exam 01 (Midterm Part 2 take home, open everything)

Name: Exam 01 (Midterm Part 2 take home, open everything) Name: Exam 01 (Midterm Part 2 take home, open everything) To help you budget your time, questions are marked with *s. One * indicates a straightforward question testing foundational knowledge. Two ** indicate

More information

Physics 2310 Lab #5: Thin Lenses and Concave Mirrors Dr. Michael Pierce (Univ. of Wyoming)

Physics 2310 Lab #5: Thin Lenses and Concave Mirrors Dr. Michael Pierce (Univ. of Wyoming) Physics 2310 Lab #5: Thin Lenses and Concave Mirrors Dr. Michael Pierce (Univ. of Wyoming) Purpose: The purpose of this lab is to introduce students to some of the properties of thin lenses and mirrors.

More information

Ismor Fischer, 5/26/

Ismor Fischer, 5/26/ Ismor Fischer, 5/6/06.5-.5 Problems. Follow the instructions in the posted R code folder (http://www.stat.wisc.edu/~ifischer/intro_stat/lecture_notes/rcode/) for this problem, to reproduce the results

More information

Surface Roughness Modeling in the Turning of AISI 12L14 Steel by Factorial Design Experiment

Surface Roughness Modeling in the Turning of AISI 12L14 Steel by Factorial Design Experiment Surface Roughness Modeling in the Turning of AISI 12L14 Steel by Factorial Design Experiment KARIN KANDANANOND Faculty of Industrial Technology Rajabhat University Valaya-Alongkorn 1 Moo 20 Paholyothin

More information

ABSTRACT. A usability study was used to measure user performance and user preferences for

ABSTRACT. A usability study was used to measure user performance and user preferences for Usability Studies In Virtual And Traditional Computer Aided Design Environments For Spatial Awareness Dr. Syed Adeel Ahmed, Xavier University of Louisiana, USA ABSTRACT A usability study was used to measure

More information

Process Development And Characterization Of The Stencil Printing Process For Small Apertures

Process Development And Characterization Of The Stencil Printing Process For Small Apertures Process Development And Characterization Of The Stencil Printing Process For Small Apertures Dr. Daryl Santos 1 and Dr. Rita Mohanty 2 1 SUNY Binghamton, Binghamton, New York, USA 2 Speedline Technologies,

More information

A New Standard for Temperature Measurement in an Aviation Environment. Hy Grossman

A New Standard for Temperature Measurement in an Aviation Environment. Hy Grossman A New Standard for Temperature Measurement in an Aviation Environment Hy Grossman Senior Design Engineer Teletronics Technology Corporation Newtown, PA USA ABSTRACT Accurate temperature measurement is

More information

II/IV B.Tech (Supplementary) DEGREE EXAMINATION

II/IV B.Tech (Supplementary) DEGREE EXAMINATION CS/IT 221 April, 2017 1. a) Define a continuous random variable. b) Explain Normal approximation to binomial distribution. c) Write any two properties of Normal distribution. d) Define Point estimation.

More information

THE CCD RIDDLE REVISTED: SIGNAL VERSUS TIME LINEAR SIGNAL VERSUS VARIANCE NON-LINEAR

THE CCD RIDDLE REVISTED: SIGNAL VERSUS TIME LINEAR SIGNAL VERSUS VARIANCE NON-LINEAR THE CCD RIDDLE REVISTED: SIGNAL VERSUS TIME LINEAR SIGNAL VERSUS VARIANCE NON-LINEAR Mark Downing 1, Peter Sinclaire 1. 1 ESO, Karl Schwartzschild Strasse-2, 85748 Munich, Germany. ABSTRACT The photon

More information

BIOS 312: MODERN REGRESSION ANALYSIS

BIOS 312: MODERN REGRESSION ANALYSIS BIOS 312: MODERN REGRESSION ANALYSIS James C (Chris) Slaughter Department of Biostatistics Vanderbilt University School of Medicine james.c.slaughter@vanderbilt.edu biostat.mc.vanderbilt.edu/coursebios312

More information

ADVANCED MEASUREMENT TECHNIQUES FOR POWER QUALITY ANALYSIS

ADVANCED MEASUREMENT TECHNIQUES FOR POWER QUALITY ANALYSIS ADVAND MAURMNT THNIQU OR POWR QUALITY ANALYI. De apua,. Landi and N. Polese Dipartimento di Ingegneria lettrica Università di Napoli "ederico II", Napoli, Italy Dipartimento di Ingegneria lettrica Università

More information

1. Section 1 Exercises (all) Appendix A.1 of Vardeman and Jobe (pages ).

1. Section 1 Exercises (all) Appendix A.1 of Vardeman and Jobe (pages ). Stat 40B Homework/Fall 05 Please see the HW policy on the course syllabus. Every student must write up his or her own solutions using his or her own words, symbols, calculations, etc. Copying of the work

More information

A New Standard for Radiographic Acceptance Criteria for Steel Castings: Gage R&R Study

A New Standard for Radiographic Acceptance Criteria for Steel Castings: Gage R&R Study Hardin, R.A., and Beckermann, C., A New Standard for Radiographic Acceptance Criteria for Steel Castings: Gage rd SFSA Technical and Operating Conference, Paper No..6, Steel Founders' R&R Study, in at

More information

GPS NAVSTAR PR (XR5PR) N/A

GPS NAVSTAR PR (XR5PR) N/A WinFrog Device Group: GPS Device Name/Model: Device Manufacturer: Device Data String(s) Output to WinFrog: WinFrog Data String(s) Output to Device: NAVSTAR PR (XR5PR) Symmetricom Navstar Systems Ltd. Mansard

More information

This manual describes the Motion Sensor hardware and the locally written software that interfaces to it.

This manual describes the Motion Sensor hardware and the locally written software that interfaces to it. Motion Sensor Manual This manual describes the Motion Sensor hardware and the locally written software that interfaces to it. Hardware Our detectors are the Motion Sensor II (Pasco CI-6742). Calling this

More information

Quality Improvement for Steel Wire Coating by the Hot-Dip Galvanizing Process to A Class Standard: A Case Study in a Steel Wire Coating Factory

Quality Improvement for Steel Wire Coating by the Hot-Dip Galvanizing Process to A Class Standard: A Case Study in a Steel Wire Coating Factory Kasetsart J. (Nat. Sci.) 47 : 447-452 (2013) Quality Improvement for Steel Wire Coating by the Hot-Dip Galvanizing Process to Class Standard: Case Study in a Steel Wire Coating Factory Pongthorn Ruksorn*

More information

ESTIMATION OF GINI-INDEX FROM CONTINUOUS DISTRIBUTION BASED ON RANKED SET SAMPLING

ESTIMATION OF GINI-INDEX FROM CONTINUOUS DISTRIBUTION BASED ON RANKED SET SAMPLING Electronic Journal of Applied Statistical Analysis EJASA, Electron. j. app. stat. anal. (008), ISSN 070-98, DOI 0.8/i07098vnp http://siba.unile.it/ese/ejasa http://faculty.yu.edu.jo/alnasser/ejasa.htm

More information

Lecture - 06 Large Scale Propagation Models Path Loss

Lecture - 06 Large Scale Propagation Models Path Loss Fundamentals of MIMO Wireless Communication Prof. Suvra Sekhar Das Department of Electronics and Communication Engineering Indian Institute of Technology, Kharagpur Lecture - 06 Large Scale Propagation

More information

Estimation of Legibility Distance for Portable Variable Message Signs

Estimation of Legibility Distance for Portable Variable Message Signs Estimation of Legibility Distance for Portable Variable Message Signs Tai-Jin Song Graduate Student Researcher Dept. of Transportation Engineering Hanyang University at Ansan 1271,Sa-3 dong, Sangnokgu,

More information

Investigations of the display white point on the perceived image quality

Investigations of the display white point on the perceived image quality Investigations of the display white point on the perceived image quality Jun Jiang*, Farhad Moghareh Abed Munsell Color Science Laboratory, Rochester Institute of Technology, Rochester, U.S. ABSTRACT Image

More information

Individuality of Fingerprints

Individuality of Fingerprints Individuality of Fingerprints Sargur N. Srihari Department of Computer Science and Engineering University at Buffalo, State University of New York srihari@cedar.buffalo.edu IAI Conference, San Diego, CA

More information

The Effect Of Different Degrees Of Freedom Of The Chi-square Distribution On The Statistical Power Of The t, Permutation t, And Wilcoxon Tests

The Effect Of Different Degrees Of Freedom Of The Chi-square Distribution On The Statistical Power Of The t, Permutation t, And Wilcoxon Tests Journal of Modern Applied Statistical Methods Volume 6 Issue 2 Article 9 11-1-2007 The Effect Of Different Degrees Of Freedom Of The Chi-square Distribution On The Statistical Of The t, Permutation t,

More information

Chapter 2. Describing Distributions with Numbers. BPS - 5th Ed. Chapter 2 1

Chapter 2. Describing Distributions with Numbers. BPS - 5th Ed. Chapter 2 1 Chapter 2 Describing Distributions with Numbers BPS - 5th Ed. Chapter 2 1 Numerical Summaries Center of the data mean median Variation range quartiles (interquartile range) variance standard deviation

More information

Data Dissemination and Broadcasting Systems Lesson 06 Adaptive Dispersal Algorithms, Bandwidth allocation and Scheduling

Data Dissemination and Broadcasting Systems Lesson 06 Adaptive Dispersal Algorithms, Bandwidth allocation and Scheduling Data Dissemination and Broadcasting Systems Lesson 06 Adaptive Dispersal Algorithms, Bandwidth allocation and Scheduling Oxford University Press 2007. All rights reserved. 1 Functions of Information dispersal

More information

Statistical tests. Paired t-test

Statistical tests. Paired t-test Statistical tests Gather data to assess some hypothesis (e.g., does this treatment have an effect on this outcome?) Form a test statistic for which large values indicate a departure from the hypothesis.

More information

December 12, FGCU Invitational Mathematics Competition Statistics Team

December 12, FGCU Invitational Mathematics Competition Statistics Team 1 Directions You will have 4 minutes to answer each question. The scoring will be 16 points for a correct response in the 1 st minute, 12 points for a correct response in the 2 nd minute, 8 points for

More information

Intrinsic Camera Resolution Measurement Peter D. Burns a and Judit Martinez Bauza b a Burns Digital Imaging LLC, b Qualcomm Technologies Inc.

Intrinsic Camera Resolution Measurement Peter D. Burns a and Judit Martinez Bauza b a Burns Digital Imaging LLC, b Qualcomm Technologies Inc. Copyright SPIE Intrinsic Camera Resolution Measurement Peter D. Burns a and Judit Martinez Bauza b a Burns Digital Imaging LLC, b Qualcomm Technologies Inc. ABSTRACT Objective evaluation of digital image

More information

BSEM 2.0. Bengt Muthén & Tihomir Asparouhov. Mplus Presentation at the Mplus Users Meeting Utrecht, January 13, 2016

BSEM 2.0. Bengt Muthén & Tihomir Asparouhov. Mplus  Presentation at the Mplus Users Meeting Utrecht, January 13, 2016 BSEM 2.0 Bengt Muthén & Tihomir Asparouhov Mplus www.statmodel.com Presentation at the Mplus Users Meeting Utrecht, January 13, 2016 Bengt Muthén & Tihomir Asparouhov Mplus Modeling 1/ 30 Overview How

More information

INTERNATIONAL JOURNAL OF MECHANICAL ENGINEERING AND TECHNOLOGY (IJMET)

INTERNATIONAL JOURNAL OF MECHANICAL ENGINEERING AND TECHNOLOGY (IJMET) INTERNATIONAL JOURNAL OF MECHANICAL ENGINEERING AND TECHNOLOGY (IJMET) International Journal of Mechanical Engineering and Technology (IJMET), ISSN 0976 ISSN 0976 6340 (Print) ISSN 0976 6359 (Online) Volume

More information

Player Speed vs. Wild Pokémon Encounter Frequency in Pokémon SoulSilver Joshua and AP Statistics, pd. 3B

Player Speed vs. Wild Pokémon Encounter Frequency in Pokémon SoulSilver Joshua and AP Statistics, pd. 3B Player Speed vs. Wild Pokémon Encounter Frequency in Pokémon SoulSilver Joshua and AP Statistics, pd. 3B In the newest iterations of Nintendo s famous Pokémon franchise, Pokémon HeartGold and SoulSilver

More information

Package IQCC. R topics documented: November 15, Title Improved Quality Control Charts Version 0.7

Package IQCC. R topics documented: November 15, Title Improved Quality Control Charts Version 0.7 Title Improved Quality Control Charts Version 0.7 Package IQCC November 15, 2017 Builds statistical control charts with exact limits for univariate and multivariate cases. Depends R (>= 3.4.2), misctools

More information